home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Tools 3
/
Amiga Tools 3.iso
/
grafik
/
raytracing
/
rayshade-4.0.6.3
/
fixes
/
fix024
/
libray
/
libobj
/
allocmatrix.h
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1994-08-09
|
332 b
|
17 lines
/*
* Matrix allocation and freeing Functions.
*
* allocmatrix.h
*
* Peter Janssen - janssen@cs.kuleuven.ac.be
*
*/
extern void **allocMatrix();
extern void freeMatrix();
#define AllocMatrix(object, y, x) \
((object **) allocMatrix(sizeof(object), y, x))
#define FreeMatrix(matrix, y) freeMatrix((void **) matrix, y)